home *** CD-ROM | disk | FTP | other *** search
/ Aminet 20 / Aminet 20 (1997)(GTI - Schatztruhe)[!][Aug 1997].iso / Aminet / comm / www / HTP.lha / HTP / source / ver.h < prev   
C/C++ Source or Header  |  1997-06-21  |  522b  |  33 lines

  1. /*
  2. //
  3. // ver.h
  4. //
  5. // version and program information
  6. //
  7. // Copyright (c) 1995-96 Jim Nelson.  Permission to distribute
  8. // granted by the author.  No warranties are made on the fitness of this
  9. // source code.
  10. // Amiga version - 1997 - Geert Bevin
  11. //
  12. */
  13.  
  14. #ifndef VER_H
  15. #define VER_H
  16.  
  17. #include <exec/types.h>
  18.  
  19. /*
  20. // program version number
  21. */
  22. #define VER_MAJOR           (1)
  23. #define VER_MINOR           (10)
  24.  
  25. extern const char *VER_STAGE;
  26. extern const char *PROGRAM_NAME;
  27.  
  28. void DisplayHeader(void);
  29. void usage(void);
  30.  
  31. #endif
  32.  
  33.